#inventory > div[name=item], #actions > div[name=action] {
  color: black;
  background-color: #eae8e8;
  padding: 6px;
}

#sceneDecisions > .Location > span {
    background-color: #eae7e7;
}

.MyrmidonArrives{
  animation-name: MyrmidonArrives;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: 2;

  -webkit-animation-name:MyrmidonArrives;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 2;
}

@keyframes MyrmidonArrives {
  from {background-color: lightsteelblue;}
  to {background-color: lightgray;}
}